home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / BSCRIPTS.CST / 00022_Script_start animation < prev    next >
Text File  |  1999-04-25  |  947b  |  35 lines

  1. -- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
  2. -- Developed for Bombardier, Inc.
  3. --
  4. -- All programming developed by: 
  5. -- Robert Fabricant, Valerie Valoueva, Ossi Shaked, 
  6. -- Henry Sauvageot, Chris Howell & Chris Girand
  7. --
  8. -- Use of this code by parties other than @radical.media, inc. or their
  9. --agents 
  10. -- without the express written consent of @radical.media, inc. AND Concurrent 
  11. -- New Media Group, L.L.C. is strictly prohibited.
  12. ------------------------------------------------------
  13.  
  14. property sLen
  15.  
  16. on getPropertyDescriptionList
  17.   set description=[:]
  18.   
  19.   addProp description,#sLen,[#default:"",#format:#integer, ¼
  20.   #comment:"The animation length "]
  21.   put description
  22.   return description
  23. end
  24.  
  25. on getbehaviorDescription
  26.   return "sets up the animation length for the object movie imitation"
  27. end
  28.  
  29. on exitframe
  30.   global sseq,eseq
  31.   set sseq= the frame +1
  32.   set eseq= the frame+sLen
  33. end
  34.  
  35.